AfterEffects : エクスプレッション : 位置の取得
同じコンポジションにいる、レイヤーの位置を取得して自分自身の位置へコピーするエクスプレッション
code:jsx
var x = thisComp.layer("レイヤー1").transform.position0; var y = thisComp.layer("レイヤー1").transform.position1; 自分自身の位置をレイヤーと対称な位置に設定するエクスプレッション
thisComp.widthを使うとコンポジションの幅が取得できる
code:jsx
var x = thisComp.width - thisComp.layer("レイヤー1").transform.position0; var y = thisComp.layer("レイヤー1").transform.position1; https://gyazo.com/7782060cd37b4bd1475b7608bfc0a1a0